home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue70 / Construc / cgi42.dpr < prev    next >
Encoding:
Text File  |  2001-04-28  |  245 b   |  14 lines

  1. program cgi42;
  2. {$APPTYPE CONSOLE}
  3. uses
  4.   WebBroker,
  5.   CGIApp,
  6.   webmod in 'webmod.pas' {WebModule1: TWebModule};
  7.  
  8. {$R *.res}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TWebModule1, WebModule1);
  13.   Application.Run;
  14. end.